CallFrame

data class CallFrame(functionName: String, scriptId: ScriptId, url: String, lineNumber: Int, columnNumber: Int)

Stack entry for runtime errors and assertions.

Constructors

CallFrame
Link copied to clipboard
fun CallFrame(functionName: String, scriptId: ScriptId, url: String, lineNumber: Int, columnNumber: Int)

Properties

columnNumber
Link copied to clipboard
val columnNumber: Int
JavaScript script column number (0-based).
functionName
Link copied to clipboard
val functionName: String
JavaScript function name.
lineNumber
Link copied to clipboard
val lineNumber: Int
JavaScript script line number (0-based).
scriptId
Link copied to clipboard
val scriptId: ScriptId
JavaScript script id.
url
Link copied to clipboard
val url: String
JavaScript script name or url.

Sources

jvm source
Link copied to clipboard